From: Eli Zaretskii Date: Thu, 29 May 2025 16:02:13 +0000 (+0300) Subject: ; * doc/lispref/searching.texi (Char Classes): Add speedup advice. X-Git-Tag: archive/raspbian/1%30.2+1-2+rpi1^2~2^2~24^2~65 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https://%22Program/%22http:/www.example.com/cgi/%22https:/%22Program?a=commitdiff_plain;h=8881dca81c95bac1977aa2c924be173382444c4a;p=emacs.git ; * doc/lispref/searching.texi (Char Classes): Add speedup advice. --- diff --git a/doc/lispref/searching.texi b/doc/lispref/searching.texi index 09ff6202afa..8434431a74a 100644 --- a/doc/lispref/searching.texi +++ b/doc/lispref/searching.texi @@ -616,7 +616,10 @@ This matches horizontal whitespace, as defined by Annex C of the Unicode Technical Standard #18. In particular, it matches spaces, tabs, and other characters whose Unicode @samp{general-category} property (@pxref{Character Properties}) indicates they are spacing -separators. +separators. (If you only need to look for ASCII whitespace characters, +we suggest using an explicit set of character alternatives, such as +@w{@samp{[ \t]}}, instead, as it will be faster than +@code{[[:blank:]]}.) @item [:cntrl:] This matches any character whose code is in the range 0--31. @item [:digit:]